home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_u_z / vlistsam.zip / MAKEFILE < prev    next >
Text File  |  1992-09-21  |  967b  |  43 lines

  1. .rc.res:
  2.     rc -r $*.rc
  3.  
  4. .c.obj:
  5.     cl -GD2s -W3 -c -AS -Zip $*.c
  6.  
  7. all: vlist.dll listtest.exe
  8.  
  9. #
  10. # list test
  11. #
  12. listtest.obj: listtest.c listtest.h
  13.     cl -GA -G2s -W3 -c -AS -Zip listtest.c
  14.  
  15. listtest.res: listtest.rc listtest.dlg
  16.  
  17. listtest.exe: listtest.obj listtest.def listtest.res
  18.     link /CO /NOD listtest,,,libw slibcew commdlg vlist,listtest.def
  19.     rc listtest.res
  20.  
  21. #
  22. #  VLIST
  23. #
  24. vlist.res: vlist.rc
  25.  
  26. vlist.obj: vlist.c vlistint.h
  27.  
  28. vlscroll.obj: vlscroll.c vlistint.h
  29.  
  30. vlrare.obj: vlrare.c vlistint.h
  31.  
  32. vlsetcur.obj: vlsetcur.c vlistint.h
  33.  
  34. dllstuff.obj: dllstuff.c vlistint.h
  35.  
  36. dlgvlist.obj: dlgvlist.c dlgvlist.h
  37.  
  38. vlist.dll: vlist.obj vlist.def vlist.res dllstuff.obj vlscroll.obj vlrare.obj vlsetcur.obj dlgvlist.obj
  39.     link /CO /NOD vlist vlrare vlscroll vlsetcur dllstuff dlgvlist libentry, vlist.dll,,libw sdllcew, vlist.def
  40.     rc vlist.res vlist.dll
  41.     implib vlist.lib vlist.def
  42.     copy *.dll \win3\system
  43.